home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 3 / Gold Medal Software - Volume 3 (Gold Medal) (1994).iso / os2 / cenv2_19.arj / BIGFONT.CMD < prev    next >
OS/2 REXX Batch file  |  1994-03-08  |  610b  |  22 lines

  1. EXTPROC CEnvi
  2. //*************************************************************************
  3. //*** BigFont.cmd - Example for how to control other programs using the ***
  4. //*** ver.1         the keyboard stuffing routines in KeyPush.Lib.      ***
  5. //*************************************************************************
  6.  
  7. #include <KeyPush.lib>
  8. #include <ClipBrd.lib>
  9.  
  10. system("mode 80,10");
  11.  
  12. KeyStroke(VK_ALT);
  13. KeyStroke('f');
  14. KeyStroke(VK_END);
  15. KeyStroke(VK_ENTER);
  16.  
  17. Command = "cls\rBigFont  WOW!!!";
  18. PutClipboardData(Command,1+strlen(Command),CF_TEXT);
  19. KeyStroke(VK_ALT);
  20. KeyStroke('p');
  21.  
  22.